home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Turnbull China Bikeride
/
Turnbull China Bikeride - Disc 1.iso
/
ARGONET
/
PD
/
PROGRAMMING
/
LCLINT-D.SPK
/
lclint
/
guide
/
rstring.c
< prev
next >
Wrap
Text File
|
1996-08-26
|
286b
|
20 lines
# include "rstring.h"
static rstring rstring_ref (rstring r)
{
r->refs++;
return r;
}
rstring rstring_first (rstring r1, rstring r2)
{
if (strcmp (r1->contents, r2->contents) < 0)
{
return r1;
}
else
{
return rstring_ref (r2);
}
}